home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_02_12
/
2n12032a
< prev
next >
Wrap
Text File
|
1991-08-18
|
282b
|
13 lines
#include <windows.h>
int PASCAL WinMain( HANDLE hInstance, HANDLE hPrevInstance,
LPSTR lpszCmdLine, int nCmdShow )
{
MessageBox( NULL, "This is a simple "
"one line Windows program",
"Simple Window Program",
MB_OK | MB_ICONEXCLAMTION );
return( 0 );
}